runtime.mheap.curArena (field)
15 uses
runtime (current package)
mheap.go#L190: curArena struct {
mheap.go#L1485: end := h.curArena.base + ask
mheap.go#L1487: if nBase > h.curArena.end || /* overflow */ end < h.curArena.base {
mheap.go#L1498: if uintptr(av) == h.curArena.end {
mheap.go#L1501: h.curArena.end = uintptr(av) + asize
mheap.go#L1506: if size := h.curArena.end - h.curArena.base; size != 0 {
mheap.go#L1510: sysMap(unsafe.Pointer(h.curArena.base), size, &gcController.heapReleased)
mheap.go#L1517: h.pages.grow(h.curArena.base, size)
mheap.go#L1521: h.curArena.base = uintptr(av)
mheap.go#L1522: h.curArena.end = uintptr(av) + asize
mheap.go#L1529: nBase = alignUp(h.curArena.base+ask, physPageSize)
mheap.go#L1533: v := h.curArena.base
mheap.go#L1534: h.curArena.base = nBase
![]() |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |